/* body stuff */
body {
  background-color: #1c1e1f;
  color: #87cee8;
  font-family: "Lucida Console";}
/* THIS ROUNDS IMAGE BORDERS */

img {
  border-radius: 16px;}

/* THIS ADDS PADDING AND BORDERS */
.text {
  padding: 35px;
  border: 5px dashed #f2e557;
}

/* all links */
a {
  color: #3b3938;
  font-weight: bold;}

/* visited link */
a:visited {
  color: #615f5e;}

/* mouse over link */
a:hover {
  color: #000000;}

/* buttons */
button:hover {background-color: #87cee8;}
button {
  background-color: #f2e557;
  border-radius: 0;
  border: 5px dashed #87cee8;
  color: #1c1e1f;
  padding: 15px 32px;
  text-align: center;
  display: block;
  font-size: 16px;
  cursor: pointer;
  margin: 0 auto;
  }
  
/* THIS SETS UP THE TRIPLE COLUMN LAYOUT */

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  height: 2400px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

  
  
